home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / RCS / memory.h,v < prev    next >
Encoding:
Text File  |  1990-10-26  |  1.2 KB  |  58 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     90.10.26.01.05.30;  author rab;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/*
  26.  * memory.h --
  27.  *
  28.  *    Declarations of memory routines.  This file exists only for
  29.  *      backwards compatibility.  New programs should include string.h
  30.  *      to get these definitions.
  31.  *
  32.  * Copyright 1990 Regents of the University of California
  33.  * Permission to use, copy, modify, and distribute this
  34.  * software and its documentation for any purpose and without
  35.  * fee is hereby granted, provided that the above copyright
  36.  * notice appear in all copies.  The University of California
  37.  * makes no representations about the suitability of this
  38.  * software for any purpose.  It is provided "as is" without
  39.  * express or implied warranty.
  40.  *
  41.  * $Header$
  42.  */
  43.  
  44. #ifndef _MEMORY_H
  45. #define _MEMORY_H
  46.  
  47. #include <cfuncproto.h>
  48.  
  49. extern _VoidPtr    memchr _ARGS_((_CONST char *s, int c, int n));
  50. extern int    memcmp _ARGS_((_CONST char *s1, _CONST char *s2, int n));
  51. extern _VoidPtr    memcpy _ARGS_((char *t, _CONST char *f, int n));
  52. extern _VoidPtr    memmove _ARGS_((char *t, _CONST char *f, int n));
  53. extern _VoidPtr    memset _ARGS_((char *s, int c, int n));
  54.  
  55. #endif /* _MEMORY_H */
  56.  
  57. @
  58.